iT邦幫忙

DAY 15
0

Sharping up with UnderScore.js library系列 第 16

Underscore [15] : 使用 after 情境

  • 分享至 

  • xImage
  •  

今天來介紹 Underscore 的 after 語法 ,

其為建立一個方法 , 當它執行了 count 次數之後才會有效果 ,

其網站的範例如下 :

var renderNotes = _.after(notes.length, render);
_.each(notes, function(note) {
  note.asyncSave({success: renderNotes});
});
// renderNotes is run once, after all notes have saved.

不過我們來自己寫個簡單的範例比較好理解 ,

下面的範例為按下click 按鈕4次之後才會執行 alert 語法 :

var cb;

cb = _.after(4, function() {
    alert('︿︿');
});

$('button').on('click', cb);

程式範例

本文同步發布於 保政島 Underscore 使用 after 情境


上一篇
Underscore [14] : 使用 groupBy 情境
下一篇
Underscore [16] : How to Use key and values
系列文
Sharping up with UnderScore.js library31
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言